home *** CD-ROM | disk | FTP | other *** search
/ Learn Microsoft Visual Basic 6.0 Now / Learn Microsoft Visual Basic 6.0 Now (Microsoft Press)(X03-58607)(1998).ISO / media / chap06 / b06a005.cc2 < prev    next >
Text File  |  1998-06-07  |  1KB  |  31 lines

  1. 0, In Chapter 5, you learned how to use the 
  2. 2, If...Then and Select Case decision 
  3. 4, structures to choose which statements to 
  4. 6, execute in a program. In this chapter, you 
  5. 10, will learn how to execute a block of 
  6. 11, statements over and over by using a loop. 
  7. 16, First, you'll learn how to use a 
  8. 18, For...Next loop to execute statements a set 
  9. 20, number of times. This capability will let 
  10. 24, you display output on the screen, manage 
  11. 27, input, and handle advanced tasks such as 
  12. 31, string processing and array 
  13. 32, manipulation. Next, you'll learn how to use a Do 
  14. 37, loop to execute statements until a 
  15. 39, conditional expression in the loop evaluates to 
  16. 41, true. Do loops are a useful alternative 
  17. 45, to For...Next loops. And I'll teach you a 
  18. 47, few classic techniques for managing input 
  19. 49, with them, including avoiding a 
  20. 51, troublesome condition known as the endless 
  21. 53, loop. Finally, you'll explore using a Timer 
  22. 57, control to execute code at specific 
  23. 60, intervals in your program. The Timer control 
  24. 63, adds a different twist to looping 
  25. 65, because it executes entire event procedures 
  26. 67, rather than a shorter block of program 
  27. 69, statements. Using the Timer control, you 
  28. 72, can very quickly create digital clocks, 
  29. 74, "time expired" messages, and compelling 
  30. 76, animation effects.
  31. 79, END